home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / apps.to.go / DTS.StyleChat / DTS.StyleChat.r < prev    next >
Encoding:
Text File  |  1994-05-18  |  1.1 KB  |  35 lines  |  [TEXT/MPS ]

  1. /*------------------------------------------------------------------------------
  2. #
  3. #    Apple Macintosh Developer Technical Support
  4. #
  5. ------------------------------------------------------------------------------*/
  6.  
  7. #include "Types.r"
  8. #include "SysTypes.r"
  9. #include "BalloonTypes.r"
  10. #include "UtilitiesCommon.h"
  11.  
  12. include "DTS.StyleChat.π.rsrc";
  13.  
  14. resource 'SIZE' (-1) {
  15.     dontSaveScreen,
  16.     acceptSuspendResumeEvents,
  17.     enableOptionSwitch,
  18.     canBackground,                /* Can properly use background null events    */
  19.     doesActivateOnFGSwitch,        /* We do our own activate/deactivate; don't fake us out */
  20.     backgroundAndForeground,    /* This is definitely not a background-only application! */
  21.     dontGetFrontClicks,            /* Change this is if you want "do first click" behavior like the Finder */
  22.     ignoreAppDiedEvents,        /* Essentially, I'm not a debugger (sub-launching) */
  23.     is32BitCompatible,            /* This app can be run in 32-bit address space */
  24.     isHighLevelEventAware,        /* does Post/AcceptHighLevelEvent */
  25.     localAndRemoteHLEvents,
  26.     notStationeryAware,
  27.     dontUseTextEditServices,
  28.     reserved,
  29.     reserved,
  30.     reserved,
  31.     800 * 1024,
  32.     800 * 1024
  33. };
  34.  
  35.